502b0ccc61e37df9e9921d0cf1d3184fa21d261a,src/main/java/fr/minecraftforgefrance/installer/OptionFrame.java,OptionFrame,OptionFrame,#Dimension#,30

Before Change


        JLabel infoLabel = new JLabel();
        infoLabel.setHorizontalTextPosition(JLabel.LEFT);
        infoLabel.setVerticalTextPosition(JLabel.TOP);
        infoLabel.setAlignmentX(LEFT_ALIGNMENT);
        infoLabel.setAlignmentY(TOP_ALIGNMENT);
        infoLabel.setForeground(Color.RED);
        infoLabel.setVisible(false);

After Change


        this.infoLabel = new JLabel();
        this.infoLabel.setForeground(Color.RED);
        this.infoLabel.setVisible(false);
        this.infoLabel.setAlignmentX(CENTER_ALIGNMENT);
        mainPanel.add(this.infoLabel);

        JLabel label = new JLabel(LANG.getTranslation("option.modpackDir.info"));